home *** CD-ROM | disk | FTP | other *** search
/ PC Home 109 / PC Home 109.iso / data1.cab / Program_Files / be008.dxr / 00003.ls < prev    next >
Encoding:
Text File  |  2001-03-02  |  450 b   |  26 lines

  1. on exitFrame
  2.   repeat with n = 3 to 5
  3.     handcursor(n)
  4.   end repeat
  5.   if rollOver(3) then
  6.     set the visible of sprite 3 to 1
  7.   else
  8.     set the visible of sprite 3 to 0
  9.   end if
  10.   if rollOver(4) then
  11.     set the visible of sprite 4 to 1
  12.   else
  13.     set the visible of sprite 4 to 0
  14.   end if
  15.   if rollOver(5) then
  16.     set the visible of sprite 5 to 1
  17.   else
  18.     set the visible of sprite 5 to 0
  19.   end if
  20.   go(the frame)
  21. end
  22.  
  23. on mouseUp
  24.   go(80)
  25. end
  26.